a t e v a n s . c o m

(╯°□°)╯︵ <ǝlqɐʇ/>
  1. Open Chrome Developer Tools (F5).
  2. Click the settings icon (a gear in the bottom right corner).
  3. Check “Disable cache”.

Now when you browse with your Developer tools open caching is disabled.

SuperUser

Invaluable the last few weeks. You really need to know where your errors are coming from.

Fixing the System Ruby on Mac OS X

dafuq, mac os? Not only is /usr/bin/ruby tough to mess with, but there’s this crazy hidden ruby that’s versioned that /bin/sh might use if it’s in a git post-commit hook or something? Seriously. How ‘bout we have one version of ruby on a system, and make it easy to swap out? Like, have rbenv built in or something?

/rant

git - Cloned GitHub repos ask for a password, while originally created don't - Super User

Your old repositories used SSH remotes (git@github.com: or ssh://git@github.com/ prefixes), which used public-key authentication. (In fact, the Github SSH server never asks for a password.)

Your new repositories use HTTP remotes (https://username@github.com/), which only support password-based HTTP Basic authentication and do not use your SSH keys.

Change your remote URLs to use SSH again. Use git remote set-url or edit .git/config to do this.

Nice.

[Rails 3 resource routes with dots; or, how to make a Ruby developer go a little bit insane Virtuous Code](http://devblog.avdi.org/2010/06/18/rails-3-resource-routes-with-dots-or-how-to-make-a-ruby-developer-go-a-little-bit-insane/)

I ended up going with this code:

    resources :top do
      constraints id: /[^\/]*/ do
        resources :crazydots
      end
    end

But yeah, the basic idea is solid. Thanks to avdi for venturing into the madness!

Q: Why are manhole covers round

A: They’re only round in three dimensions. In seven dimensions they’re straight.

#trollinginterviewquestions

[Textarea animated glow like on twitter using css3. The Pretty Klicks Blog](http://www.prettyklicks.com/blog/textarea-animated-glow-like-on-twitter-using-css3/67/)

Nice tutorial on how to make textareas less fugly.

snaptortoise/jekyll-rss-feeds · GitHub

Useful way to get RSS into your Jekyll / Github pages site really quickly.

Mastodon